home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / aplayer / close2iconify.aplay < prev    next >
Text File  |  1995-07-02  |  1KB  |  29 lines

  1. /* This program will iconify instead of quit when you push the close   */
  2. /* button.                                                             */
  3. /*                                                                     */
  4. /* To use this you will have to set this script up so that it runs,    */
  5. /* whenever you push the quit button. You do this in the Arexx-config  */
  6. /* Window. Go to the field marked 'ED:' and insert this script here.   */
  7. /*                                                                     */
  8. /* PS: Notice that the only way you can quit the program is either via */
  9. /* the 'quit.aplay' script or by using 'Exchange' and pressing the     */
  10. /* 'remove' button.                                                    */
  11.  
  12. ADDRESS APlayer
  13. OPTIONS RESULTS
  14. SIGNAL ON HALT
  15.  
  16. Iconify
  17.  
  18. /* Amazing script, isn't it ;-). Why don't you make your own?  */
  19.  
  20. /* 
  21.    This is the 'emergencybrake' part of this script. If you can't stop this
  22.    sucker run the program HI which is located in the RXC drawer on your
  23.    sys: partition.
  24. */
  25.  
  26. HALT:
  27. Say 'The Close2Iconify.aplay script has been stopped. C U L8R.'
  28. EXIT
  29.